home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / xset / wc4g < prev    next >
Text File  |  1994-08-12  |  360b  |  26 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4.  
  5. CFLAGS = -DMSDOS
  6.  
  7. all:    wc4g.tag xset.exe
  8.  
  9. O =    xset.obj
  10.  
  11. .c.obj :
  12.     wcc386 $(CFLAGS) $*.c
  13.  
  14. xset.exe:    wc4g $(O)
  15.     wlink N xset.exe f xset l xmu,xext,X11,sys op st=30k,caseexact
  16.  
  17. wc4g.tag:
  18.     del *.tag
  19.     del *.obj
  20.     del *.map
  21.     del *.rsp
  22.     del *.cfg
  23.     del *.exe
  24.     echo >wc4g.tag
  25.  
  26.